Skip to content

Rot(m)(g) batched and strided_batched#737

Merged
daineAMD merged 14 commits into
ROCm:developfrom
daineAMD:rot_batched
Oct 7, 2019
Merged

Rot(m)(g) batched and strided_batched#737
daineAMD merged 14 commits into
ROCm:developfrom
daineAMD:rot_batched

Conversation

@daineAMD
Copy link
Copy Markdown
Contributor

@daineAMD daineAMD commented Oct 4, 2019

Adds the following functions:

  • rot_batched, rot_strided_batched
  • rotm_batched, rotm_strided_batched
  • rotg_batched, rotg_strided_batched
  • rotmg_batched, rotmg_strided_batched

Edit:
Does not support batched param in rotm and rotmg from API. Supports batched param at _template level. Unsure if we want to support batched param on the host as this forces a hipMemcpy in the _template function.

DOES support batched param in rotm and rotmg from API. Does NOT support param located on the host for (strided_)batched versions of rotm.

Testing
The testing times for all rot functions, along with Andrew's estimations for 4 BLAS1 functions testing time follows:

Functions Quick Pre-checkin Nightly
All rot funcs 5.1s 68.7s 347s
4 L1 Funcs 8 - 48s 48 - 144s 288s - 864s

Copy link
Copy Markdown
Contributor

@TorreZuk TorreZuk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved with changes required. This PR is probably too big. Probably should have been done in two or more PR, one for each function. That way the design pattern is approved before going to far.

Comment thread clients/common/rocblas_gentest.py
Comment thread clients/include/testing_rot_batched.hpp Outdated
Comment thread clients/include/testing_rotm_batched.hpp Outdated
Comment thread library/src/blas1/rocblas_rot.hpp Outdated
Comment thread library/src/blas1/rocblas_rotm.hpp Outdated
0);
else // array of params on host, copy to device
{
// This should NOT happen from calls from the API currently.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I vote we don't support this.

Copy link
Copy Markdown
Contributor Author

@daineAMD daineAMD Oct 7, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has been addressed in 474e196. We now support:

  • batched param for rotm(g)(strided)batched.
  • param can be located on either host or device for original rotm, and for all rotmg (host version of rotmg is entirely carried out on the host)
  • param can only be located on device for (strided_)batched versions of rotm.

Comment thread library/include/rocblas-functions.h Outdated
n rocblas_int
number of elements in the x and y vectors.
@param[inout]
x array of pointers storing vector x on the GPU.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for c and s comment has "host or device memory", for x and y the comment has "on the GPU". It would be better to be consistent, say "in device memory" in place of "on the GPU"

Comment thread library/include/rocblas-functions.h Outdated
n rocblas_int
number of elements in the x and y vectors.
@param[inout]
x pointer storing strided vectors x on the GPU.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see above comment on consistency of description

@daineAMD daineAMD merged commit ba0560b into ROCm:develop Oct 7, 2019
wbgilmartin pushed a commit to wbgilmartin/rocBLAS that referenced this pull request Oct 9, 2019
* Changed timeout from hours to minutes (ROCm#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (ROCm#701)

* SLES support (ROCm#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (ROCm#695)

* Fixing Timeout

* BF16 replacement kernels (ROCm#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (ROCm#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (ROCm#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (ROCm#708)

* Batched syr (ROCm#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (ROCm#719)

* Refactor Ger and Gemv (ROCm#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (ROCm#737)

* SWDEV 203994 (ROCm#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (ROCm#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (ROCm#742)
wbgilmartin pushed a commit to wbgilmartin/rocBLAS that referenced this pull request Oct 14, 2019
* Changed timeout from hours to minutes (ROCm#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (ROCm#701)

* SLES support (ROCm#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (ROCm#695)

* Fixing Timeout

* BF16 replacement kernels (ROCm#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (ROCm#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (ROCm#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (ROCm#708)

* Batched syr (ROCm#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (ROCm#719)

* Refactor Ger and Gemv (ROCm#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (ROCm#737)

* SWDEV 203994 (ROCm#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (ROCm#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (ROCm#742)

* Fix GEMM for half type
wbgilmartin pushed a commit to wbgilmartin/rocBLAS that referenced this pull request Oct 16, 2019
* Changed timeout from hours to minutes (ROCm#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (ROCm#701)

* SLES support (ROCm#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (ROCm#695)

* Fixing Timeout

* BF16 replacement kernels (ROCm#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (ROCm#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (ROCm#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (ROCm#708)

* Batched syr (ROCm#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (ROCm#719)

* Refactor Ger and Gemv (ROCm#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (ROCm#737)

* SWDEV 203994 (ROCm#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (ROCm#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (ROCm#742)

* Fix GEMM for half type

* Refactoring classes to be simpler

* Fix rocblas_half
wbgilmartin pushed a commit to wbgilmartin/rocBLAS that referenced this pull request Oct 17, 2019
* Changed timeout from hours to minutes (ROCm#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (ROCm#701)

* SLES support (ROCm#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (ROCm#695)

* Fixing Timeout

* BF16 replacement kernels (ROCm#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (ROCm#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (ROCm#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (ROCm#708)

* Batched syr (ROCm#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (ROCm#719)

* Refactor Ger and Gemv (ROCm#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (ROCm#737)

* SWDEV 203994 (ROCm#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (ROCm#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (ROCm#742)

* Changing Gemv and Ger stride type (ROCm#747)

* Handle spaces and newline (ROCm#748)

* Fix GEMM for half type

* Tuned Shakespeare kernels (ROCm#749)

* Refactoring classes to be simpler

* Fix rocblas_half
wbgilmartin pushed a commit to wbgilmartin/rocBLAS that referenced this pull request Oct 21, 2019
* Changed timeout from hours to minutes (ROCm#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (ROCm#701)

* SLES support (ROCm#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (ROCm#695)

* Fixing Timeout

* BF16 replacement kernels (ROCm#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (ROCm#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (ROCm#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (ROCm#708)

* Batched syr (ROCm#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (ROCm#719)

* Refactor Ger and Gemv (ROCm#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (ROCm#737)

* SWDEV 203994 (ROCm#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (ROCm#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (ROCm#742)

* Changing Gemv and Ger stride type (ROCm#747)

* Handle spaces and newline (ROCm#748)

* Fix GEMM for half type

* Tuned Shakespeare kernels (ROCm#749)

* Refactoring classes to be simpler

* Fix rocblas_half

* Cleanup source
wbgilmartin added a commit that referenced this pull request Oct 21, 2019
* integration of the new tensile client

* New tensile client (#1)

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* Map values to value categories currently represented as double

* minor changes

* merge Bill & Lee's changes

* Merge Bill & Lee's changes

* Fix build errors

* Merge 2.10 develop into new tensile client (#2)

* Changed timeout from hours to minutes (#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (#701)

* SLES support (#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (#695)

* Fixing Timeout

* BF16 replacement kernels (#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (#708)

* Batched syr (#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (#719)

* Refactor Ger and Gemv (#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (#737)

* SWDEV 203994 (#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (#742)

* fix for changes of FreeIndices change in Tensile

* New tensile client (#3)

* Changed timeout from hours to minutes (#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (#701)

* SLES support (#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (#695)

* Fixing Timeout

* BF16 replacement kernels (#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (#708)

* Batched syr (#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (#719)

* Refactor Ger and Gemv (#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (#737)

* SWDEV 203994 (#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (#742)

* Fix GEMM for half type

* updates to get rocblas-test and half sizes to work

* partial fix for NaN test failures

* New tensile client (#4)

* Changed timeout from hours to minutes (#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (#701)

* SLES support (#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (#695)

* Fixing Timeout

* BF16 replacement kernels (#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (#708)

* Batched syr (#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (#719)

* Refactor Ger and Gemv (#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (#737)

* SWDEV 203994 (#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (#742)

* Fix GEMM for half type

* Refactoring classes to be simpler

* Fix rocblas_half

* fix negative workgroup mapping error

* fix WorkGroupMapping issue for files in asm_lite

* more fixes for workgroupmapping issue

* wgm issue for asm_miopen

* New tensile client (#5)

* Changed timeout from hours to minutes (#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (#701)

* SLES support (#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (#695)

* Fixing Timeout

* BF16 replacement kernels (#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (#708)

* Batched syr (#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (#719)

* Refactor Ger and Gemv (#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (#737)

* SWDEV 203994 (#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (#742)

* Changing Gemv and Ger stride type (#747)

* Handle spaces and newline (#748)

* Fix GEMM for half type

* Tuned Shakespeare kernels (#749)

* Refactoring classes to be simpler

* Fix rocblas_half

* fix argument validation in gemm calls

* fix complex strided batch implementation

* fix validateArgs redefinition

* New tensile client (#6)

* Changed timeout from hours to minutes (#699)

* set clang include directory, fix for centos build error

* hot fix to restore loading of DGEMM replacement kernels (#701)

* SLES support (#704)

* Merging master with SLES commit

* Specifying GPU architecture for ubuntu and sles (#695)

* Fixing Timeout

* BF16 replacement kernels (#705)

* hot fix to restore loading of DGEMM replacement kernels
* Revert "Switch to using separate D for gemm_ex benchmark calls (#667)"
This reverts commit 402d231.
* bf16 kernels for gfx908
* use bf16 UseBeta=0 replacement kernels
* update tensile_tag to use bf16 UseBeta=0 replacement kernels

* Restore usebeta1 logic (#707)

* restore UseBeta=1 logic for arcturus BF16 TN

* Supporting clang10 for SLES (#708)

* Batched syr (#727)

* adding syr batched and strided batched

* rocblas_stride, reusable template pattern work

* WIP

* fixes testing and format

* restore dependency

* adds minimal batches  & bad arg

* fix bad arg testing

* constify ptrs, spelling

* add alpha vector support, PR feedback

* more BF16 TN sizes

* Refactoring

* Move tensile_host.hpp from public C API to private C++ implementation

* Work around missing complex; fix formatting

* Remove --lib option and argument; make use of legacy handle API instead of introducing a new host handle API

* gf908 BF16 TN 512x512x512 known issue

* Enable SLES packaging (#719)

* Refactor Ger and Gemv (#735)

* Map values to value categories currently represented as double

* Rot(m)(g) batched and strided_batched (#737)

* SWDEV 203994 (#743)

* Refactor alpha, beta logging; do not return invalid pointer errors in GEMM, GEMV when other arguments allow early exit

* Fixes

* update

* version for master branch release

* version for develop branch release

* update Tensile package number

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests (#741)

* Fixing SLES tests LD_LIBRARY_PATH and refactoring tests

* Missing braces/spelling

* spelling

* Fixing packaging

* New Winograd kernels added (#742)

* Changing Gemv and Ger stride type (#747)

* Handle spaces and newline (#748)

* Fix GEMM for half type

* Tuned Shakespeare kernels (#749)

* Refactoring classes to be simpler

* Fix rocblas_half

* Cleanup source
@daineAMD daineAMD deleted the rot_batched branch October 29, 2019 20:05
mlse-lib-jenkins pushed a commit that referenced this pull request Jun 11, 2021
ROCm 4.4 merge staging into master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants